home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / miscuni.com / IOERROR.DOC < prev    next >
Encoding:
Text File  |  1989-05-25  |  435 b   |  19 lines

  1. IOError
  2. -------
  3.  
  4. IOError is a small unit that exports 1 function to map a given
  5. I/O error code to a string describing the error.
  6.  
  7. Type
  8.  
  9.   IOErrStr = String[35]
  10.  
  11. This is the base type of the returned message.
  12.  
  13.   function IOErrorMsg( Number : Integger): IOErrStr;
  14.  
  15. This function takes the Number which should be obtained through a
  16. call to IOResult and maps it to a string containing a brief
  17. description of the error.
  18.  
  19.